print an array C#

99

C# print array -

foreach(var item in yourArray)
{
    Console.WriteLine(item.ToString());
}

Comments

Submit
0 Comments